home *** CD-ROM | disk | FTP | other *** search
- Unmatched Brackets
- This error can have two meanings:
-
- * Left and right brackets do not match. eg.
- 10+((2*3) would give this error. You should ALWAYS
- have a matching right bracket for every left bracket
- used.
-
- * Or too many right brackets were encountered before
- the matching left brackets. eg. 2+(5*2))( would
- give this error.
-
- It should be noted that the above examples are
- artificially simple, often these errors occur in
- complex expressions.
- *
- -
- -
- -
- -